home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Date
- @Method: toLocaleString() - converts a date to a locale string.
- @Syntax: date.toLocaleString()
- @Summary: toLocaleString - converts a date to a locale string
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("date.toLocaleString()", selection);
- editor.setActive("Insert date.toLocaleString");
- }
- }
-
- !!/Script
-